

.ovh-f {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
}

.w1440 {
  width: 1440px;
  margin: 0 auto;
}

.w1100 {
  width: 1100px;
  margin: 0 auto;
}

a {
  display: block;
}

.text-shadow2{
  text-shadow: 10px 5px 10px rgba(0, 0, 0, 0.8)
}
/*!
 * Hamburgers
 */
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger:hover {
  opacity: 0.7;
}

.hamburger.is-active:hover {
  opacity: 0.7;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #000;
}

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 40px;
  height: 4px;
  background-color: #000;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}

.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

/*
   * 3DY Reverse
   */
.hamburger--3dy-r .hamburger-box {
  perspective: 80px;
}

.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.45s 0s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
  transition: transform 0.3s 0s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg);
}

.hamburger--3dy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 7px, 0) rotate(45deg);
}

.hamburger--3dy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -7px, 0) rotate(-45deg);
}

.animate-inFromLeft, .animate-inFromRight {
  visibility: visible !important;
}

.animate-outToRight .li-js {
  /*animation: outToRight 0.6s both cubic-bezier(0.7, 0, 0.3, 1);*/
}

.animate-outToLeft .li-js {
  animation: outToLeft 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
}

.animate-inFromLeft .li-js {
  animation: inFromLeft 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
}

.animate-inFromRight .li-js {
  /*animation: inFromRight 0.6s both cubic-bezier(0.7, 0, 0.3, 1);*/
}

@keyframes outToRight {
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes outToLeft {
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes inFromLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes inFromRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes opacity1 {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*loading*/
#page-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  background-color: #131230;
  z-index: 9999;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
}

.preloader .preloader-section {
  position: absolute;
  width: 100%;
  background-color: #19191c;
}

.preloader .preloader-section.preloader-top {
  top: 0;
  height: 55%;
}

.preloader .preloader-section.preloader-bottom {
  bottom: 0;
  height: 45%;
}

.preloader .preloader-wrapper {
  position: absolute;
  top: 50%;
  width: 100%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.preloader .progress {
  box-sizing: border-box;
  position: relative;
  width: 20%;
  height: 2px;
  margin-right: auto;
  margin-left: auto;
  background-color: #1798dc;
}

.preloader .progress .progress-inner {
  position: absolute;
  max-width: 100%;
  width: 0;
  height: 100%;
  background: #fff;
  -webkit-animation: widthlenth 1.5s 2 ease;
  -moz-animation: widthlenth 1.5s 2 ease;
}

.preloader .preloader-logo-wrapper {
  position: absolute;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.preloader .preloader-logo {
  width: 332px;
  text-align: center;
  overflow: hidden;
}
.preloader .preloader-logo img {
  max-width: 100%;
}

.preloader.active .progress {
  width: 100%;
  -webkit-transition: width .6s 3s ease;
  -o-transition: width .6s 3s ease;
  transition: width .6s 3s ease;
}

.preloader.onn {
  visibility: hidden;
}

.preloader.on .progress {
  visibility: hidden;
}

.preloader.active .preloader-section.preloader-top {
  height: 0;
  -webkit-transition: height .6s 3.6s ease;
  -o-transition: height .6s 3.6s ease;
  transition: height .6s 3.6s ease;
}

.preloader.active .preloader-logo {
  transform: translateY(200%);
  transform: translateY(200%);
  -webkit-transition: transform .6s 3s ease;
  -o-transition: transform .6s 3s ease;
  transition: transform .6s 3s ease;
}

.preloader.on .preloader-logo {
  opacity: 0;
  visibility: hidden;
}

.preloader.active .preloader-section.preloader-bottom {
  height: 0;
  -webkit-transition: height .6s 3.6s ease;
  -o-transition: height .6s 3.6s ease;
  transition: height .6s 3.6s ease;
}

@keyframes widthlenth {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes bigimg {
  0% {
    transform: scale(0.9, 0.9);
  }
  50% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(1.1, 1.1);
  }
}
/*#loading{
  display: none !important;
}*/
/*loading*/


.header1 {
  background: #fff;
  position: absolute;
  width: 100%;
  padding: 0 1.4rem;
  z-index: 99; height: 92px;
  transition: all .2s ease-in-out;
}
.header1 .n-header {
  height: 92px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  transition: all .5s ease-in-out;
}
.header1 .logo {
  width: 252px;
  height: 59px;
  position: relative;
  transition: all .5s ease-in-out;
}
.header1 .logo img {
  width: 100%;
  position: absolute;
  left: 0;
  top: 8px;
}
.header1 .nav {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center; margin-left: 7rem;
}
.header1 .nav .li {
  height: 90px;
  line-height: 90px;
  margin-right: 1rem;
  font-size: 17px;
  
}
.header1 .nav .li a {
  display: block;
  color: #262626; font-size: 17px; 
  transition: all .5s ease;
}
.header1 .nav .li:hover .ali, .header1 .nav .li.cur .ali {
  color: #1798dc;
}
.header1 .nav .li:hover span{color: #1798dc;}
.header1 .header-right {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
}
.header1 .header-right .language-tab {
  width: 60px;
  position: relative;
}
.header1 .header-right .language-tab .spbox {
  padding-right: 20px;
  color: #fff;
  font-weight: bold;
  position: relative;
  font-size: 16px;
  cursor: pointer;
  transition: all .3s ease;
}
.header1 .header-right .spbox.cur {
  color: #e60012;
}
.header1 .search-btn {
  font-size: 20px;
  color: #666;
  cursor: pointer;
  
  font-size: 30px; margin-right: 0.5rem;
  transition: all .5s ease;border-left: 1px solid #545759;
    height: 20px;
    line-height: 20px; padding-left: 1rem;
}
.header1 .search-btn:hover {
  color: #1798dc;
}
.header1 .subnav3 .ul-f {
  /*padding-right:calc(50% - 700px);*/
}
.header1 .subnav3 .ul-20 {
  /*padding-right:28% !important;*/
}
.header1 .pc-sub-nav {
  background: rgba(38,38,38,0.72);
  position: absolute;
  top: 92px;
  padding: 0;
  width: 100%;
  left: 0;
  box-shadow: 2px 5px 10px 0px rgba(0, 0, 0, 0.1);
  line-height: 50px;
  display: none;
}
.header1 .pc-sub-nav .list {
  transition: all .6s;
  left: 0%;
  width: 100%;
}
.header1 .pc-sub-nav .list .nlist .ul-two {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  height: 2.25rem;
  font-size: 16px;
 
}
.header1 .pc-sub-nav .list .nlist .ul-two .li2 {
  margin: 0 0.5rem;
  display: block;
  line-height: 2.0rem;
}
.header1 .pc-sub-nav .list .nlist .ul-two .li2 a.sp {
  color: #fff;
  /*opacity:.8;*/
  font-size: 16px;
  transition: color .5s ease-in-out;
  position: relative;
}
.header1 .pc-sub-nav .list .nlist .ul-two .li2 a.sp:before {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  background: #1798dc;
  transition: width .5s ease-in-out;
}
.header1 .pc-sub-nav .list .nlist .ul-two .li2:hover a.sp, .header1 .pc-sub-nav .list .nlist .ul-two .li2.cur a.sp {
  opacity: 1;
  color: #fff;
}
.header1 .pc-sub-nav .list .nlist .ul-two .li2:hover a.sp:before, .header1 .pc-sub-nav .list .nlist .ul-two .li2.cur a.sp:before {
  width: 100%;
}
.header1 .pc-sub-nav .list .li-item-box {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: stretch;
}
.header1 .pc-sub-nav .list .w20 {
  width: 16.6%;
}
.header1 .pc-sub-nav .list .w50 {
  width: 50%;
}
.header1 .pc-sub-nav .list .w25 {
  width: 25%;
}
.header1 .pc-sub-nav .list .li-item {
  padding: .6rem 1rem 0px;
  border-right: 1px solid #313131;
}
.header1 .pc-sub-nav .list .li-item .dd {
  margin-bottom: .6rem;
  font-size: 18px;
  line-height: 2;
}
.header1 .pc-sub-nav .list .li-item .dd:hover {
  color: #1798dc;
}
.header1 .pc-sub-nav .list .li-item .dt {
  font-size: 16px;
  line-height: 2.5;
  color: #fff;
  transition: color .5s ease-in-out;
}
.header1 .pc-sub-nav .list .li-item .dt:hover {
  color: #1798dc;
}
.header1 .pc-sub-nav .list .li-item:last-child {
  border-right: none;
}
.header1 .pc-sub-nav .list .li-item-box-2 .li-item2 {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: flex-start;
}
.header1 .pc-sub-nav .list .li-item-box-2 .li-item2 a {
  margin: 0 0 .6rem;
  width: 20%;
  text-align: center;
}
.header1 .pc-sub-nav .list .dtbox {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.header1 .pc-sub-nav .list .dtbox .dt {
  width: 33.3%;
  padding-right: 3%;
}
.header1 .pc-sub-nav .list .li-item-box {
  transition: all 0s .6s ease-in-out;
}
.header1 .pc-sub-nav .list .li-item-box.on {
  transition: all .5s 0s ease-in-out;
}
.header1 .pc-sub-nav .list .li-item-box-2 .dd {
  margin-bottom: .3rem;
}
.header1 .pc-sub-nav .list .li-item-box-2 .dd:hover {
  color: #1798dc;
}
.header1 .pc-sub-nav .list .ul-s {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  line-height: 2.25rem;
  font-size: 18px;
  
}
.header1 .pc-sub-nav .list .ul-s .li3 {
  color: #fff;
  margin: 0 .5rem;
  display: block;
  line-height: 2.25rem;
  position: relative;
  transition: color .5s ease-in-out;
}
.header1 .pc-sub-nav .list .ul-s .li3:before {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  background: #1798dc;
  transition: width .5s ease-in-out;
}
.header1 .pc-sub-nav .list .ul-s .li3:hover, .header1 .pc-sub-nav .list .ul-s .li3.cur {
  color: #fff;
  opacity: 1;
}
.header1 .pc-sub-nav .list .ul-s .li3:hover:before, .header1 .pc-sub-nav .list .ul-s .li3.cur:before {
  width: 100%;
}
.header1 .pc-sub-nav .list .ul-f {
  /*justify-content:flex-end;*/
}
.header1 .pc-sub-nav .list .warp-item {
  width: 100%;
  background: #262626;
  position: absolute;
  width: 100%;
  left: 0;
  top: 2.25rem;
  display: none;
}
.header1 .subnav3 .pc-sub-nav .list .warp-item {
  border-top: 1px solid #313131;
}
.header1 .subnav3 .pc-sub-nav .list .li2 .li-item-box {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
  align-items: stretch;
}
.header1 .subnav3 .pc-sub-nav .list .li2:hover .li3, .header1 .subnav3 .pc-sub-nav .list .li2:hover.cur .li3 {
  color: #fff;
  opacity: 1;
}
.header1 .subnav3 .pc-sub-nav .list .li2:hover .li3:before, .header1 .subnav3 .pc-sub-nav .list .li2:hover.cur .li3:before {
  width: 100%;
}
.header1 .pc-sub-nav .list.on {
  opacity: 1;
  visibility: visible;
}
.header1 .pc-sub-nav .list .ul-two-sub-2 .li-item-one {
  padding-left: 4.25rem;
}
.header1.on {
  background: #212121;
}

.header1 .pc-sub-nav .list .li-item .dt:last-child {
  margin-bottom: .8rem;
}

.header1.scroll {
  position: fixed;
  background: rgba(0, 0, 0, 1);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
.header1.scroll .pc-sub-nav {
  top: 70px;
}

.header1.on {
  background: rgba(0, 0, 0, 0.8);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
.header1.on .pc-sub-nav {
  top: 70px;
}

.header1.cur {
  background: rgba(0, 0, 0, 0.8);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.header2 {
  height: 65px;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  background: transparent;
  z-index: 15;
  width: 100%;
  display: none;
  transition: all .5s ease-in-out;
}
.header2 .main-wrap {
  height: 65px;
  padding: 0 4%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  transition: all .5s ease-in-out;
}
.header2 .logo {
  width: 6rem;
  height: 65px;
  line-height: 65px;
  overflow: hidden;
}
.header2 .logo a {
  display: block;
}
.header2 .logo img {
  width: 100%;
  vertical-align: middle;
}
.header2 .search-btn {
  font-size: 20px;
  color: #d0d0d0;
  cursor: pointer;
  position: absolute;
  right: calc(8% + 20px);
  height: 65px;
  line-height: 65px;
  width: 40px;
  text-align: center;
  font-size: .9rem;
}
.header2 .language-tab {
  width: 60px;
  height: 65px;
  line-height: 65px;
  position: absolute;
  right: calc(8% + 70px);
  top: 0;
}
.header2 .language-tab .spbox {
  padding-right: 20px;
  color: #999;
  font-weight: bold;
  position: relative;
  font-size: 16px;
  cursor: pointer;
  /*&:before{
    content:"";
    position: absolute;
    width:0;   
    height:0;   
    right:0;
    top:50%;
    margin-top:-3px;
    border-left:6px solid transparent;   
    border-right:6px solid transparent;   
    border-top:6px solid #fff;
  }*/
}
.header2 .hamburger {
  position: absolute;
  right: 0%;
  top: 0;
  height: 65px;
  padding: 0 4%;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}
.header2 .hamburger .hamburger-box {
  width: .9rem;
  height: .9rem;
}
.header2 .hamburger .hamburger-inner::before {
  top: -7px;
}
.header2 .hamburger .hamburger-inner::after {
  top: 7px;
}
.header2 .hamburger .hamburger-inner {
  top: 50%;
  margin-top: -1.5px;
}
.header2 .hamburger .hamburger-inner, .header2 .hamburger .hamburger-inner::before, .header2 .hamburger .hamburger-inner::after {
  width: 100%;
  height: 3px;
  background: #fff;
}
.header2 .sub-menu {
  width: 100%;
  display: none;
  position: absolute;
  left: 0;
  top: 65px;
  z-index: 2;
}
.header2 .sub-menu .sub-tab {
  padding: .75rem 3%;
  overflow: hidden;
  border-bottom: 1px solid #3c3c3c;
  position: relative;
}
.header2 .sub-menu .sub-tab .swiper-slide {
  color: #999;
  font-size: .75rem;
  line-height: 1.5;
  text-align: left;
  position: relative;
  transition: color .3s ease-in-out;
}
.header2 .sub-menu .sub-tab .swiper-slide span {
  position: relative;
}
.header2 .sub-menu .sub-tab .swiper-slide span:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: calc(-.75rem - (.25 * 0.325rem));
  width: 100%;
  height: 1px;
  background: transparent;
  transition: all .3s ease-in-out;
}
.header2 .sub-menu .sub-tab .swiper-slide:last-child {
  text-align: right;
}
.header2 .sub-menu .sub-tab .swiper-slide.cur {
  color: #fff;
  /*span{
    &:before{
      background:#e60012;
    }
  }*/
}
.header2 .sub-menu .sub-tab .swiper-scrollbar {
  height: 2px;
}
.header2 .sub-menu .sub-tab .swiper-scrollbar-drag {
  background: rgba(227, 1, 18, 0.5);
}
.header2 .sub-menu .sub-ajax {
  height: calc(100vh - 65px - 3.5rem);
  position: relative;
  display: none;
}
.header2 .sub-menu .sub-ajax .list1 {
  padding: .86rem 4% 0;
  height: calc(100vh - 65px - 3.5rem);
  visibility: hidden;
  overflow-y: scroll;
  overflow-x: hidden;
}
.header2 .sub-menu .sub-ajax .list1 .li-item {
  padding: .86rem 0;
  font-size: .65rem;
  color: #ddd;
  position: relative;
}
.header2 .sub-menu .sub-ajax .list1 .li-item:before {
  position: absolute;
  right: 0;
  top: 50%;
  font-size: .6rem;
  transform: translate(0, -50%);
}
.header2 .sub-menu .sub-ajax .list1 .li-item a {
  color: #ddd;
  position: relative;
  font-size: .65rem;
}
.header2 .sub-menu .sub-ajax .list1 .li-item a:before {
  position: absolute;
  right: 0;
  top: 50%;
  font-size: .6rem;
  transform: translate(0, -50%);
}
.header2 .sub-menu .sub-ajax .list2 {
  padding: .86rem 4% 0;
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  overflow: hidden;
  overflow-y: scroll;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.header2 .sub-menu .sub-ajax .list2 .li-item {
  padding: .5rem 0;
  font-size: .65rem;
  color: #ddd;
  position: relative;
}
.header2 .sub-menu .sub-ajax .list2 .li-item:before {
  position: absolute;
  right: 0;
  top: 50%;
  font-size: .6rem;
  transform: translate(0, -50%);
}
.header2 .sub-menu .sub-ajax .list2 .li-item a {
  color: #ddd;
  position: relative;
  font-size: .65rem;
}
.header2 .sub-menu .sub-ajax .list2 .li-item a:before {
  position: absolute;
  right: 0;
  top: 50%;
  font-size: .6rem;
  transform: translate(0, -50%);
}
.header2 .sub-menu .sub-ajax .list2 .li-item2 {
  margin-bottom: .65rem;
  border-bottom: 1px solid #3c3c3c;
}
.header2 .sub-menu .sub-ajax .list2 .li-item2 .title {
  color: #ddd;
}
.header2 .sub-menu .sub-ajax .list2 .li-item2 a.title2 {
  padding: .5rem 0;
  color: #999;
  font-weight: normal;
}
.header2 .sub-menu .sub-ajax .list2 .li-item2:last-child {
  border-bottom: none;
}
.header2 .sub-menu .sub-ajax .list2 .tit {
  font-weight: normal;
}
.header2 .sub-menu .sub-ajax .list2 .back-btn {
  width: 100%;
  text-align: center;
  position: relative;
}
.header2 .sub-menu .sub-ajax .list2 .back-btn:before {
  position: absolute;
  left: 0;
  top: 50%;
  font-size: .6rem;
  transform: translate(0, -50%);
}
.header2 .sub-menu .sub-ajax .list3 .li-item {
  padding: .86rem 0;
}
.header2 .sub-menu ul {
  width: 100%;
  overflow-x: hidden;
}
.header2 .sub-menu li {
  border-bottom: 1px solid #dcdcdc;
  font-size: 16px;
}
.header2 .sub-menu .tit {
  display: block;
  width: 100%;
  /*margin-bottom:.3rem;*/
  line-height: 1.6;
  color: #cdcdcd;
  font-size: .65rem;
  position: relative;
  font-weight: bold;
}
.header2 .sub-menu .sub-ajax .list2 .li-item3 a.title2 {
  padding: .5rem 0;
  color: #999;
  font-weight: normal;
}
.header2 .sub-menu .sub-tit:before {
  display: block;
  width: auto;
  height: 20px;
  background-size: 100% auto;
  position: absolute;
  right: 0%;
  top: 50%;
  font-size: .6rem;
  transform: translate(0, -50%);
}
.header2 .sub-menu .sub-tit.on {
  color: #fff;
}
.header2 .sub-menu .sub-tit.on:before {
  content: "\e669";
}
.header2 .sub-menu .sec-list {
  /*font-size:.75rem;
  padding-bottom:1rem;*/
  display: none;
}
.header2 .sub-menu .sec-list p {
  /*padding:.4rem 0;*/
  line-height: 1.5;
}
.header2 .sub-menu .sec-list a {
  color: #999;
}
.header2 .logo, .header2 .language-tab, .header2 .search-btn, .header2 .hamburger {
  transition: all .5s ease-in-out;
}

.header2.scroll {
  position: fixed;
  height: 55px;
  background: #212121;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
.header2.scroll .main-wrap {
  height: 55px;
}
.header2.scroll .logo, .header2.scroll .language-tab, .header2.scroll .search-btn, .header2.scroll .hamburger {
  height: 55px;
  line-height: 55px;
}

.header2.on {
  height: 55px;
  background: #212121;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
.header2.on .main-wrap {
  height: 55px;
}
.header2.on .logo, .header2.on .language-tab, .header2.on .search-btn, .header2.on .hamburger {
  height: 55px;
  line-height: 55px;
}

.c-mask-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background-color: #262626;
  display: none;
}

.search-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background-color: #f5f5f5;
  display: none;
  z-index: 20;
}

.search-alert {
  position: fixed;
  z-index: 100;
  background-color: #222;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.search-alert input::-webkit-input-placeholder {
  color: #fff !important;
}
.search-alert input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #fff !important;
}
.search-alert input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #fff !important;
}
.search-alert input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #fff !important;
}
.search-alert .cent-form {
  opacity: 0;
  transform: translate(0, 40px);
  transition: all .5s;
}

.search-alert .close {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 38px;
  right: 2.6%;
  cursor: pointer;
  transition: all .3s ease-in-out;
}
.search-alert .close:before {
  font-size: 30px;
  top: 0;
  left: 0;
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.search-alert .close:hover:before {
  color: #d00010;
}

.search-alert .cent-form {
  position: absolute;
  width: 94.8%;
  left: 2.6%;
  top: 50%;
  height: 2rem;
  margin-top: -63px;
  border-bottom: 1px solid #515151;
}

.search-alert .cent-form:before {
  color: #fff;
  font-size: 30px;
  position: absolute;
  left: 0;
  height: 50px;
  top: 50%;
  margin-top: -25px;
}

.search-alert .cent-form .tex {
  border: none;
  font-size: 1.2rem;
  height: 1.5rem;
  line-height: 1.5rem;
  text-align: center;
  width: 100%;
  color: #555;
  background: none;
  padding-left: 2rem;
  padding-right: 3.5rem;
}

.search-alert .cent-form .sub-butn {
  border: none;
  height: 1.5rem;
  font-size: .8rem;
  line-height: 1.5rem;
  color: #555;
  text-align: right;
  background: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 3.5rem;
  text-align: center;
}

.search-alert {
  transform-origin: bottom center;
  transform: scaleY(0);
  transition: transform .3s .5s;
}

.search-alert.active {
  transform-origin: top center;
  transform: scaleY(1);
  transition: transform .3s;
}
.search-alert.active .cent-form {
  opacity: 1;
  transform: translate(0, 0);
  transition: all .5s .3s;
}

.tab-label {
  display: block;
  position: relative;
  overflow: hidden;
  text-align: center;
  margin: .5rem auto 0;
}
.tab-label .n-tab-label {
  display: inline-block;
  text-align: center;
  height: 22px;
  line-height: 22px;
  font-size: 16px;
  font-weight: bold;
  overflow: hidden;
  position: relative;
  margin-top: 11.5px;
}
.tab-label .tab-label-inner {
  display: block;
}
.tab-label .tab-label-inner-bottom {
  position: absolute;
  top: 0;
  left: 0;
}
.tab-label .tab-label-inner-bottom .words-z, .tab-label .tab-label-inner-top .words-z {
  position: relative;
}
.tab-label .tab-label-inner-top .words-z span {
  position: relative;
  display: inline-block;
  transform: matrix(1, 0, 0, 1, 0, 0);
  -webkit-transition: transform .3s;
  -o-transition: transform .3s;
  transition: transform .3s;
}
.tab-label .tab-label-inner-bottom .words-z span {
  position: relative;
  display: inline-block;
  transform: translate(0%, 100%) matrix(1, 0, 0, 1, 0, 0);
  -webkit-transition: transform .3s;
  -o-transition: transform .3s;
  transition: transform .3s;
}
.tab-label:hover .tab-label-inner-top .words-z span {
  position: relative;
  display: inline-block;
  transform: translate(0%, -100%) matrix(1, 0, 0, 1, 0, 0);
}
.tab-label:hover .tab-label-inner-bottom .words-z span {
  position: relative;
  display: inline-block;
  transform: translate(0%, 0%) matrix(1, 0, 0, 1, 0, 0);
}










/*效果弹框部分*/

.layer-alert .md-content {
  width: 100%;
  height: auto;
  padding: .5rem;
  border-radius: 0;
  background: #f9f9f9;
}

.layer-alert .md-close {
  position: absolute;
  width: 50px;
  height: 50px;
  font-size: 24px;
  background: #000;
  color: #fff;
  right: 0rem;
  top: 0rem;
  cursor: pointer;
  line-height: 40px;
  text-align: center;
  transition: all .3s .3s ease-in-out;
}

.layer-alert {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 50%;
  max-width: 500px;
  min-width: 320px;
  height: auto;
  z-index: 99;
  visibility: hidden;
  backface-visibility: hidden;
  transform: translateX(-50%) translateY(-50%);
}

.layer-alert {
  width: 100%;
  height: auto;
}
.layer-alert .n-text {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin: 0 auto;
}
.layer-alert .big-img {
  width: 100%;
  text-align: center;
}
.layer-alert .big-img img {
  display: inline-block;
  width: 100%;
  max-width: 400px;
}
.layer-alert .img-right {
  width: 100%;
  padding: 1.5rem;
}
.layer-alert .tit4 {
  margin-bottom: .5rem;
}
.layer-alert .tit5 {
  margin-bottom: .5rem;
}

.layer-alert.md-show {
  opacity: 1;
  visibility: visible;
}
.layer-alert.md-show ~ .md-close {
  opacity: 1;
  transition: all .3s 0s ease-in-out;
  visibility: visible;
}

.video-alert.md-show ~ .fot-overlay {
  opacity: 1;
  visibility: visible;
}

.layer-alert {
  position: fixed;
  top: 0;
  left: 0;
  max-width: none;
  transform: translateX(0) translateY(0);
  width: 100%;
  height: 100vh;
}

.layer-alert .md-content {
  height: 100vh;
  overflow-y: scroll;
}

.layer-alert2 .big-img img {
  max-width: 90%;
}

.fot-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  visibility: hidden;
  top: 0;
  left: 0;
  z-index: 1000;
  opacity: 0;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.video-alert .md-content {
  width: 100%;
  height: auto;
  padding: 5px;
  background: #000;
}

.video-alert .md-close {
  position: absolute;
  width: 40px;
  height: 40px;
  font-size: 24px;
  color: #fff;
  background: #000;
  right: 0rem;
  top: 0rem;
  cursor: pointer;
  line-height: 40px;
  text-align: center;
  z-index: 6;
  transition: all .3s ease-in-out;
}

.video-alert .md-close:hover {
  background: #dc0e20;
}

.video-alert {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 50%;
  max-width: 1000px;
  min-width: 320px;
  height: auto;
  z-index: 2000;
  opacity: 0;
  filter: alpha(opacity=0);
  visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.video-alert .video {
  width: 100%;
  height: auto;
}

.video-alert.md-show ~ .fot-overlay {
  opacity: 1;
  visibility: visible;
}

.video-alert.md-show ~ .md-close {
  opacity: 1;
  visibility: visible;
}

.video-alert.md-show {
  opacity: 1;
  filter: alpha(opacity=100);
  visibility: visible;
}

@keyframes icon1 {
  0% {
    transform: scale(0.8, 0.8);
    opacity: 1;
  }
  50% {
    transform: scale(1, 1);
    opacity: 0;
  }
  100% {
    transform: scale(0.8, 0.8);
    opacity: 1;
  }
}
@keyframes toRightFromRight {
  79% {
    transform: translate(-102%);
  }
  80% {
    transform: translate(102%);
  }
  81% {
    opacity: 1;
  }
}
@keyframes toRightFromLeft {
  0%,100% {
    transform: rotate(180deg);
  }
  79% {
    transform: rotate(180deg) translate(-102%);
  }
  80% {
    transform: rotate(180deg) translate(110%);
  }
  81% {
    opacity: 1;
  }
}
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  45% {
    transform: scale3d(1.4, 1.4, 1.4);
  }
  to {
    transform: scale3d(1.15, 1.15, 1.15);
  }
}
.backtop-1 {
  position: fixed;
  bottom: 80px;
  right: 3%;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  height: 46px;
  padding: 0;
  margin: 0;
  width: 46px;
  border-radius: 50%;
  z-index: 9;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  transform: scale(0, 0);
  opacity: 1;
  transform: translate(0, 50px);
  transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}
.backtop-1:before {
  height: 46px;
  line-height: 46px;
  width: 46px;
  position: relative;
  display: block;
  text-align: center;
  top: 0%;
  font-size: 16px;
  color: #fff;
  animation: start-backtop-1 2s infinite ease-in-out;
}
.backtop-1.active {
  transform: scale(1, 1);
  opacity: 1;
}

@keyframes start-backtop-1 {
  0%, 30% {
    opacity: 0;
    transform: translate(0, 5px);
  }
  40% {
    opacity: 1;
    transform: translate(0px, -6px);
  }
  100% {
    opacity: 0;
    transform: translate(0px, -8px);
  }
}
.js-m {
 /* opacity: 0;*/
  opacity: 1;
  transform: translate(0, 50px);
  transition: .5s ease-in-out;
}

.js-m.words-js span {
  opacity: 0;
  transform: translate(0, 30px);
  transition: .5s ease-in-out;
}

.js-m.words-js.animate span {
  opacity: 1;
  transform: translate(0, 0px);
}

.words-js span {
  display: inline-block;
}

.js-m.words-js2 {
  opacity: 1;
  transform: translate(0, 0px);
}

.js-m.words-js2 span {
  opacity: 0;
  transform: translate(100px, 0px);
  transition: 0.8s cubic-bezier(0.32, 0.6, 0.4, 1.21);
}

.js-m.words-js2.animate span {
  opacity: 1;
  transform: translate(0px, 0px);
}

.words-js2 span {
  display: inline-block;
}

.js-m.animate-left {
  opacity: 0;
  transform: translate(-60px, 0px);
  transition: .8s ease-in-out;
}

.js-m.animate-right100 {
  opacity: 0;
  transform: translate(100px, 0px);
  transition: .5s ease-in-out;
}

.js-m.animate-right50 {
  opacity: 0;
  transform: translate(50px, 0px);
  transition: opacity 0.8s cubic-bezier(0.32, 0.6, 0.4, 1.21), transform 0.8s cubic-bezier(0.32, 0.6, 0.4, 1.21);
}

.js-m.animate-right2 {
  opacity: 0;
  transform: translate(80px, 0px);
  transition: opacity 1.2s cubic-bezier(0.32, 0.6, 0.4, 1.21), transform 1.2s cubic-bezier(0.32, 0.6, 0.4, 1.21);
}

.js-m.animate-top {
  opacity: 0;
  transform: translate(0, 50px);
  transition: .6s ease-in-out;
}

.js-m.animate-bottom {
  opacity: 0;
  transform: translate(0, -1.5rem);
  transition: 0.8s cubic-bezier(0.32, 0.6, 0.4, 1.21);
}

.js-m.animate {
  opacity: 1 !important;
  transform: translate(0, 0px) !important;
}

.delay1 {
  transition-delay: .1s;
}

.delay2 {
  transition-delay: .2s;
}

.delay3 {
  transition-delay: .3s;
}

.delay4 {
  transition-delay: .4s;
}
/*end效果弹框部分*/




.n-banner {
  height: 20rem;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  position: relative;
  z-index: 5;
}
.n-banner .text {
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  padding: 0 5%;
}
.n-banner .sub-navbox {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2.25rem;
  line-height: 2.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.n-banner .sub-nav {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}
.n-banner .li-item {
  font-size: 16px;
  line-height: 1.4;
  position: relative;
}
.n-banner .li-item span {
  padding-right: 25px;
  position: relative;
  color: #fff;
  white-space: nowrap;
  transition: all .3s .45s ease-in-out;
}
.n-banner .li-item span:before {
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
}
.n-banner .spbox {
  padding: 0 .5rem;
  height: 48px;
  line-height: 48px;
  cursor: pointer;
  transition: all .3s .45s ease-in-out;
}
.n-banner .spbox.cur {
  background: #fcfcfc;
  transition: all .3s ease-in-out;
}
.n-banner .spbox.cur span {
  color: #666;
  transition: all .3s ease-in-out;
}
.n-banner .item-sub {
  position: absolute;
  top: 48px;
  left: 0;
  width: 260px;
  background: #fcfcfc;
  line-height: 45px;
  display: none;
}
.n-banner .item-sub .li {
  padding: 0 .5rem;
  line-height: 1.5;
  color: #666;
  height: 45px;
  font-size: 16px;
  position: relative;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: left;
  transition: all .3s ease-in-out;
}
.n-banner .item-sub .li:before {
  position: absolute;
  right: .75rem;
  top: 50%;
  color: #fff;
  transform: translate(-10px, -50%);
  transition: all .3s ease-in-out;
}
.n-banner .item-sub .li:hover {
  background: #c50324;
  color: #fff;
}
.n-banner .item-sub .li:hover:before {
  transform: translate(0px, -50%);
}
.n-banner .li-line {
  margin: 0 .65rem;
  color: #fff;
  opacity: .33;
}
.n-banner .li-item-two {
  font-size: 16px;
  line-height: 1.4;
  position: relative;
}
.n-banner .li-item-two span {
  padding-right: 25px;
  position: relative;
  color: #fff;
  transition: all .3s .45s ease-in-out;
}
.n-banner .li-item-two span:before {
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  height: 16px;
  line-height: 16px;
  margin-top: -8px;
  transform: rotate(180deg);
}
.n-banner .li-item-two .spbox {
  color: #fff;
}
.n-banner .sub-nav-two .swiper-wrapper {
  justify-content: center;
  align-items: center;
  height: 2.25rem;
}
.n-banner .sub-nav-two .li-item {
  margin: 0 .5rem;
}
.n-banner .sub-nav-two .swiper-slide {
  width: auto;
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}
.n-banner .sub-nav-two .swiper-slide .li-line {
  position: absolute;
  right: 0;
  margin: 0;
  top: 50%;
  transform: translate(0, -50%);
}
.n-banner .warp-ulbox {
  padding: 0 2.5rem;
  bottom: 2.25rem;
  width: 100%;
  position: absolute;
}
.n-banner .warp-ulbox .ulbox {
  width: 1270px;
  margin: 0 auto;
  overflow: hidden;
}
.n-banner .warp-ulbox .swiper-slide .time {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
}
.n-banner .warp-ulbox .swiper-slide .time span {
  margin-right: 10px;
  padding-right: 10px;
  position: relative;
}
.n-banner .warp-ulbox .swiper-slide .time span:before {
  content: "";
  right: 0;
  background: #fff;
  position: absolute;
  width: 1px;
  height: 12px;
  top: 50%;
  margin-top: -6px;
}
.n-banner .warp-ulbox .swiper-button-next, .n-banner .warp-ulbox .swiper-button-prev {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 24px;
  color: #fff;
  margin-top: -20px;
  opacity: 1;
  transition: all .3s ease;
  opacity: 1;
  cursor: pointer;
  overflow: hidden;
  background: transparent;
  border-radius: 40px;
}
.n-banner .warp-ulbox .swiper-button-next:before, .n-banner .warp-ulbox .swiper-button-prev:before {
  z-index: 4;
  position: relative;
  text-align: center;
  display: block;
}
.n-banner .warp-ulbox .swiper-button-prev {
  left: 2rem;
}
.n-banner .warp-ulbox .swiper-button-next.swiper-button-disabled, .n-banner .warp-ulbox .swiper-button-prev.swiper-button-disabled {
  opacity: 1;
  cursor: pointer;
  pointer-events: visible;
}
.n-banner .warp-ulbox .swiper-button-next {
  right: 2rem;
}
.n-banner .warp-ulbox .swiper-button-next:before {
  transform: rotate(-180deg);
}
.n-banner .warp-ulbox .swiper-button-prev:hover:before {
  animation: toRightFromRight 0.5s forwards;
}
.n-banner .warp-ulbox .swiper-button-next:hover:before {
  animation: toRightFromLeft 0.5s forwards;
}
.n-banner .warp-ulbox .swiper-button-prev:hover {
  background: #1798dc;
  animation: pulse 0.5s ease-out forwards;
}
.n-banner .warp-ulbox .swiper-button-next:hover {
  background: #1798dc;
  animation: pulse 0.5s ease-out forwards;
}
.n-banner .tit-p {
  width: 1200px;
  margin: .7rem auto 0;
}
.n-banner .line-bot {
  position: absolute;
  width: 1px;
  height: 2rem;
  left: 50%;
  bottom: 0;
  background: rgba(255, 255, 255, 0.5);
  z-index: 2;
  animation: fadeOutDown 2s infinite;
  animation-fill-mode: both;
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.n-banner .sub-navbox, .n-banner .sub-nav-two {
  transition: height .5s,background .2s;
}
.n-banner .sub-navbox.scroll, .n-banner .sub-nav-two.scroll {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 4;
  background: rgba(34, 34, 34, 0.6);
  height: 55px;
  line-height: 55px;
}
.n-banner .sub-navbox.scroll .swiper-wrapper, .n-banner .sub-nav-two.scroll .swiper-wrapper {
  height: 55px;
}

.n-banner .sub-navbox {
  transition: all .3s ease-in-out;
}

.header1 {
  top: 0;
}

.header1.scroll {
  transition: all .3s ease-in-out;
}

.header1.scroll-two {
  top: -70px;
}

.n-banner .sub-navbox.scroll-two {
  top: 70px;
}

.n-banner2 {
  height: 100vh;
}







.n-banner .text .tit-60, .n-about .list5 .tit1, .n-about .list4 .tit1, .n-about .list6 .tit1, .n-about .list7 .tit1, .n-layer .dlbox .tit1, .n-layer .img-right .tit4, .n-responsibility .list1 .tit1, .n-responsibility .list2 .tit1, .n-responsibility .list3 .tit1, .n-responsibility .list4 .tit1, .n-responsibility .list5 .tit1, .n-responsibility .list6 .tit1, .n-join .list1 .tit1, .n-social .list1 .tit1, .n-school .list2 .tit1, .n-school .list3 .tit1, .n-school .list5 .tit1, .n-say .list1 .tit1, .n-say .list2 .tit1, .n-contact .contact-top .tit1, .n-contact .tit1, .n-join-info .list1 .tit1, .n-join-info .list1 .tit3, .n-join-info .list2 .tit1, .n-help .list1 .tit1, .n-help .list1 .top .tab .li, .n-help .list2 .tit1, .n-help .list3 .tit1, .n-help .list4 .tit1, .n-join-from .tit1, .n-news .news-top .ul-tab .li-tab, .n-news .news-box .n-news-right .item .tit2, .page a, .n-news-info .list1 .news-nav .news-back .back-btn, .n-news-info .list1 .news-top .news-tit, .n-investor .tit1, .n-stock .tit1, .n-governance .tit1, .n-activity .tit1, .n-notice .tit1, .n-strategic .dlbox .text-warp .tit4, .n-strategic .dlbox .li-item .btn, .layer-alert2 .tit4, .n-application .list2 .ulbox .text .tit2, .n-application .list2 .ulbox .text .btn, .n-application .list3 .click-btn, .n-application .tit1, .n-application .list1 .li-item .text .tit2, .n-supply .list1 .tit1, .n-application .list4 .li-item .text .tit2, .n-application .list7 .li-item .text .tit2, .n-application .list9 .text-ajaxbox .ul-text .li-item6 .tit3, .n-application .list22 .li-item .text .tit2, .n-culture .list1 .title, .header1 .header-right .nav .li, .n-banner .text, .i-listc .imgbox .text .tit1, .i-listb .text .tit1, .n-responsibility .list2 .li-item .tit2, .n-contact .contact-ajax .add-item .sp1 .tit3, .n-application .list20 .tit2, .i-banner .text .tit1, .n-search .tit1, .n-search .tit2, .n-search .tit3, .n-search .tab-li, .n-banner .warp-ulbox .ulbox .tit1 {
  font-family: "方正兰亭黑";
}








/*响应的公共部分*/

.pc-block {
  display: block !important;
}
.mobile-block {
  display: none !important;
}
.pcin-block {
  display: none !important;
}
.opacity-block {
  opacity: 0;
  visibility: hidden;
}
.mobile-block-768 {
  display: none !important;
}
.mobile-block-500 {
  display: none;
}
/*搜索样式*/
.search-alert {
  position: fixed;
  z-index: 100;
 background: rgba(0,0,0,0.99);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.search-alert input::-webkit-input-placeholder {
  color: #555 !important;
}
.search-alert input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #555 !important;
}
.search-alert input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #555 !important;
}
.search-alert input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #555 !important;
}
.search-alert .cent-form {
  opacity: 0;
  transform: translate(0, 40px);
  transition: all .5s;
}

.search-alert .close {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 38px;
  right: 2.6%;
  cursor: pointer;
  transition: all .3s ease-in-out;
}
.search-alert .close:before {
  font-size: 30px;
  top: 0;
  left: 0;
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.search-alert .close:hover:before {
  color: #d00010;
}

.search-alert .cent-form {
  position: absolute;
  width: 94.8%;
  left: 2.6%;
  top: 50%;
  height: 2rem;
  margin-top: -63px;
  border-bottom: 1px solid #515151;
}

.search-alert .cent-form:before {
  color: #fff;
  font-size: 30px;
  position: absolute;
  left: 0;
  height: 50px;
  top: 50%;
  margin-top: -25px;
}

.search-alert .cent-form .tex {
  border: none;
  font-size: 1.2rem;
  height: 1.5rem;
  line-height: 1.5rem;
  text-align: center;
  width: 100%;
  color: #fff;
  background: none;
  padding-left: 2rem;
  padding-right: 3.5rem;
}

.search-alert .cent-form .sub-butn {
  border: none;
  height: 1.5rem;
  font-size: .8rem;
  line-height: 1.5rem;
  color: #555;
  text-align: right;
  background: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 3.5rem;
  text-align: center;
}

.search-alert {
  transform-origin: bottom center;
  transform: scaleY(0);
  transition: transform .3s .5s;
}

.search-alert.active {
  transform-origin: top center;
  transform: scaleY(1);
  transition: transform .3s;
}
.search-alert.active .cent-form {
  opacity: 1;
  transform: translate(0, 0);
  transition: all .5s .3s;
}
/*搜索样式end*/

@media (max-width: 1500px) {
  .w1440 {
    width: 88%;
  }
}
@media (max-width: 1360px) {
  .header1 .pc-sub-nav .list .li-item .dd {
    font-size: 16px;
  }
}
@media (max-width: 1360px) {
  .header1 .nav .li, .header1 .pc-sub-nav .list .nlist .ul-two .li2 a.sp {
    margin-right: 1rem;
    font-size: 16px;
  }
  .header1 .pc-sub-nav .list .ul-s .li3 {
    font-size: 16px;
  }
}
@media (max-width: 1270px) {
  .header1 {
    padding: 0 3%;
  }
  .w1100 {
    width: 90%;
  }
}


@media (max-width: 1024px) {
  .pc-block {
    display: none !important;
  }

  .mobile-block {
    display: block !important;
  }
  .header1 {
    display: block;
  }
  .header2 {
    display: block;
  }

  .pcin-block {
    display: inline-block !important;
  }
  .n-search .search-left {
    width: 100%;
  }

  .n-search .wtab {
    margin-top: 1rem;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: flex-start;
  }

  .n-search .search-right .tab-li {
    width: 48%;
  }

  .n-search .search-right {
    width: 100%;
  }
}
  
@media (max-width: 768px) {
  .footer2 .bot-nav .tit {
    font-size: .6rem;
    padding: .65rem 0;
  }

  .footer2 .bot-nav .sec-list {
    font-size: .55rem;
  }

  .header2 .sub-menu .sub-tab .swiper-slide {
    font-size: .6rem;
  }
}
@media (max-width: 560px) {
  .header2 .language-tab {
    width: 40px;
    right: calc(8% + 55px);
  }
  .header2 .language-tab .spbox {
    font-size: 12px;
    padding-right: 12px;
  }
  .header2 .language-tab .spbox:before {
    margin-top: -2px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #fff;
  }

  .header2 .logo {
    width: 5rem;
  }

  .header2 .search-btn {
    width: 25px;
  }
}

@media (max-width: 500px) {
  .mobile-block-500 {
    display: block;
  }
}


@media (max-width: 768px) {
  .i-listb .text, .i-lista .text, .i-listb .text .tit2, .n-banner .tit-p, .n-about .list1 .text, .n-about .list3 .whis-box .tit3, .n-say .list1 .tit2, .n-responsibility .list1 .tit4, .n-responsibility .list3 .tit4, .n-responsibility .list4 .tit4, .n-join .list1 .tit-16, .n-application .list5 .list-box .ani-slide .text .tit3 {
    text-align: left;
  }
  .more-click .btn {
    width: 60px !important;
    height: 60px !important;
    line-height: 60px !important;
    font-size: 12px;
  }

  .more-click .btn:after {
    width: 35px !important;
    height: 35px !important;
    line-height: 35px !important;
  }
}

@media (max-width: 560px) {
  .search-alert .cent-form .tex {
    font-size: 1rem;
  }
}


@media (max-width: 1500px) {
  .n-banner .warp-ulbox .ulbox {
    width: calc(100% - 7rem);
  }
}
@media (max-width: 1360px) {
  .n-banner .tit-p {
    width: 90%;
  }
}
@media (max-width: 1024px) {
  .n-banner .warp-ulbox {
    padding: 0 .5rem;
    bottom: 1rem;
  }

  .n-banner .warp-ulbox .ulbox .tit1 {
    font-size: .75rem;
  }

  .n-banner .warp-ulbox .swiper-button-prev {
    left: .2rem;
  }

  .n-banner .warp-ulbox .swiper-button-next {
    right: .2rem;
  }

  .n-banner .warp-ulbox .ulbox {
    width: calc(100% - 3rem);
  }
  .n-banner .line-bot {
    height: 2rem;
  }

  .n-banner2 {
    height: 25rem;
  }
}
@media (max-width: 560px) {
  .n-banner .sub-nav .li-item span {
    padding-right: 16px;
    font-size: 12px;
  }

  .n-banner .sub-nav .li-item-two span {
    padding-right: 16px;
    font-size: 12px;
  }

  .n-banner .sub-nav .spbox {
    padding: 0 .3rem;
  }

  .n-banner .sub-nav .li-line {
    margin: 0 .3rem;
  }

  .n-banner .sub-nav .item-sub .li {
    font-size: 12px;
  }

  .n-banner .sub-nav .item-sub {
    width: 160px;
  }

  .n-banner .sub-nav .spbox {
    height: 40px;
    line-height: 40px;
  }

  .n-banner .sub-nav .item-sub {
    top: 40px;
  }

  .n-banner .sub-nav .li-item:nth-child(5) .item-sub {
    left: auto;
    right: 0;
  }

  .n-banner .sub-nav-two .swiper-slide:last-child .item-sub {
    left: auto;
    right: 0;
  }

  .n-banner .sub-nav .item-sub .li {
    height: 40px;
  }

  .n-banner .sub-nav-two .li-item span {
    padding-right: 16px;
    font-size: 12px;
  }

  .n-banner .sub-nav-two .spbox {
    padding: 0 .3rem;
  }

  .n-banner .item-sub .li {
    padding: 0 .3rem;
  }

  .n-banner .sub-nav-two .li-line {
    margin: 0 .3rem;
  }

  .n-banner .sub-nav-two .item-sub .li {
    font-size: 12px;
  }

  .n-banner .sub-nav-two .item-sub {
    width: 160px;
  }

  .n-banner .sub-nav-two .spbox {
    height: 40px;
    line-height: 40px;
  }

  .n-banner .sub-nav-two .item-sub {
    top: 40px;
  }

  .n-banner .sub-nav-two .item-sub .li {
    height: 40px;
  }

  .n-banner .sub-nav-two .swiper-wrapper {
    justify-content: flex-start;
  }

  .n-banner .warp-ulbox .swiper-button-next, .n-banner .warp-ulbox .swiper-button-prev {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 16px;
    margin-top: -15px;
  }
}
/*end*/


/*年份下拉样式*/
.year-select {
  width: 150px;
}
.year-select div.cs-skin-border {
  font-weight: normal;
  text-align: center;
  padding-right: 32px;
  color: #666;
}
.year-select .cs-skin-border > span {
  border: none;
}
.year-select .cs-skin-border.cs-active span {
  color: #666;
}
.year-select .cs-select ul span {
  padding: 10px 5px;
  font-size: 14px;
  line-height: 22px;
}
.year-select .cs-select > span {
  height: 35px;
  line-height: 35px;
  padding: 0;
}
.year-select .cs-skin-border .cs-options li span:hover, .year-select .cs-skin-border li.cs-focus span {
  background: #c60a2a;
  color: #fff !important;
}
.year-select .cs-select > span:after {
  content: '\e60d';
  font-size: 14px;
}

@media (max-width: 1024px) {
  .year-select {
    width: 100%;
  }
  .year-select div.cs-skin-border {
    text-align: left;
    padding-right: 0;
  }
  .year-select .cs-skin-border > span {
    font-size: 14px;
  }
}


@media (max-width: 960px) {
   .buttonbox {
    height: 35px !important;
    margin-top: 1rem !important;
  }

  .buttonbox .swiper-button-next, .buttonbox .swiper-button-prev {
    width: 35px !important;
    height: 35px !important;
    line-height: 35px !important;
    font-size: 16px !important;
  }

  .buttonbox .swiper-pagination {
    height: 35px !important;
    line-height: 35px !important;
  }

  .buttonbox .swiper-pagination span {
    width: 6px !important;
    height: 6px !important;
  }
}

@media (max-width: 768px) {
  .buttonbox .swiper-pagination {
    padding: 0 40px !important;
  }
}



@media (max-width: 768px) {
  .tab-label .n-tab-label {
    font-size: 14px;
  }
}


@media (max-width: 560px) {
  .n-application .tab-label {
    width: 150px !important;
  }

  .n-application .tab-label .n-tab-label {
    padding-right: 20px !important;
  }

  .n-application .tab-label .n-tab-label:before {
    font-size: 12px !important;
  }
}
@media (max-width: 560px) {
  .tab-label {
    width: 125px !important;
    height: 35px !important;
    line-height: 35px !important;
  }
  .tab-label .n-tab-label {
    margin-top: 6px;
  }
  .tab-label .n-tab-label:before {
    font-size: 14px !important;
  }
}
.no-data {
  padding: 2rem 0 0;
  text-align: center;
}
.no-data img {
  display: inline-block;
  max-width: 100%;
}
@media (max-width: 768px) {
  .no-data img {
    display: inline-block;
    max-width: 6rem;
  }
}

/*悬浮侧栏*/
.app-sub {
  position: fixed;
  right: 0;
  z-index: 9;
  bottom: 15%;
}
.app-sub .item {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  padding-right: 30px;
  background: #dcdcdc;
  margin-bottom: 1px;
  transform: translate(calc(100% - 60px), 0);
  transition: all .5s ease;
}
.app-sub .img {
  width: 60px;
  height: 60px;
  position: relative;
}
.app-sub .img .img1, .app-sub .img .img2 {
  position: absolute;
  left: 0;
  top: 0;
}
.app-sub .img .img2 {
  opacity: 0;
  filter: alpha(opacity=0);
}
.app-sub .tit3 {
  opacity: 0;
  filter: alpha(opacity=0);
}
.app-sub .item:hover {
  background: #c4112f;
  transform: translate(0, 0);
}
.app-sub .item:hover .img .img2 {
  opacity: 1;
  filter: alpha(opacity=1);
}
.app-sub .item:hover .img .img1 {
  opacity: 0;
  filter: alpha(opacity=0);
}
.app-sub .item:hover .tit3 {
  opacity: 1;
  filter: alpha(opacity=1);
}
.app-sub .tit3 {
  font-size: 18px;
  color: #fff;
}

@media (max-width: 500px) {
  .app-sub .img {
    width: 45px;
    height: 45px;
  }

  .app-sub .img img {
    width: 100%;
  }

  .app-sub .item {
    transform: translate(calc(100% - 40px), 0);
  }

  .app-sub .tit3 {
    display: none;
  }
}

@media (max-width: 768px) {
  .layer-alert .md-close {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 16px;
  }

  .layer-alert .img-right {
    padding: 1.2rem .5rem 1rem;
  }
}
@media (max-width: 768px) {
  .video-alert .video {
    display: none;
  }

  .video-alert.md-show .video {
    display: block;
  }
}


@media (max-width: 960px) {
  .text-ajaxbox .ul-text .content-box5 .li-imgbox {
    height: 7.5rem;
  }
}




.appbtn-box{
  width:180px;
  height:45px;
  line-height:45px;
  font-size:16px;
  color:#fff;
  margin:1rem auto 0;
  border:1px solid rgba(255,255,255,.5);
  transition: all .3s ease;
}
.appbtn-box:hover{
  background:#e60012;
  border:1px solid #e60012;
  color:#fff;
}
@media (max-width: 767px) {
  .appbtn-box{
    width:130px;
     height:35px;
    line-height:35px;
    font-size:14px;
  }
}

.header1:hover{ background: #fff;}
.dengmeww a{ font-size: 16px;}
.dengmeww{ padding-left: 10px; padding-right: 0px;}
.dengmeww a:hover{ color: #1798dc;}


.list > .nlist{ width: auto; margin-bottom:0}
.search-alert{z-index: 1000;}




@media (max-width: 1680px){
    .header1 .pc-sub-nav .list .ul-s .li3{ line-height:2.75rem; height:2.75rem}
    .header1 .pc-sub-nav .list .nlist .ul-two{line-height:2.75rem; height:2.75rem}
    .header1 .pc-sub-nav .list .nlist .ul-two{line-height:2.75rem; height:2.75rem}
    .header1 .search-btn{padding-left: 0.4rem;margin-right: 0.0rem;}
    
    
    
}
@media (max-width: 1424px){
    
.header1 .nav .li {
    margin-left: 10px;
    margin-right: 10px;
}



}

@media (max-width: 1416px){
	
	.header1 .nav .li {
    margin-left: 8px!important;
    margin-right: 8px!important;
}

}


@media (max-width: 1400px){
    
  body .DetailsNav .DetailsNav_left a{margin-right: 22px;} 
    
}
@media (max-width: 1364px){
	.header1 {
    padding: 0 0.4rem!important;
}
.header1 .nav .li {
    margin-left: 0px;
    margin-right: 0px;
}	
	
}
@media (max-width: 1360px){
    .header1 .pc-sub-nav .list .nlist .ul-two .li2{margin: 0 0.0rem;}
    
    
    
}

@media (max-width: 1334px){
	.header1 {
    padding: 0 1.2rem!important;
}
	
	
}


@media (max-width: 1280px){
	
	.header1 {
    padding: 0 0.4rem!important;
}
	
}



@media (max-width: 1150px){
    .header1 .nav .li, .header1 .pc-sub-nav .list .nlist .ul-two .li2 a.sp{ margin-right:0.6rem}
    
}
@media (max-width: 1060px){
    .header1 .nav .li, .header1 .pc-sub-nav .list .nlist .ul-two .li2 a.sp{ margin-right:0.2rem}
    
}

@media (max-width: 1110px){
   body  .DetailsNav .DetailsNav_left a{ font-size:15px;margin-right: 10px;}
    
    
}
@media (max-width: 1320px){
	
	body .header1 .nav .li {
    margin-left: 0px;
    margin-right: 0px;
}
	
}




